home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / Stopwatch2.3 / Source / createPath.h < prev    next >
C/C++ Source or Header  |  1995-06-12  |  329b  |  12 lines

  1. /*
  2.  * For legal stuff see the file COPYRIGHT
  3.  */
  4. typedef enum {
  5.   PathCreationOk,        /* success */
  6.   PathMkdirFailure,        /* mkdir(2) failed */
  7.   PathStatFailure,        /* stat(2)  failed */
  8.   PathNotDirectory,        /* the path exists, but isn't a directory */
  9. } CreatePathErr;
  10.  
  11. extern CreatePathErr createPath( const char *path, int mode );
  12.